home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 353_02 / supervsr.h < prev    next >
C/C++ Source or Header  |  1992-01-18  |  932b  |  41 lines

  1.                                       // Chapter 11 - Program 3
  2. #ifndef SUPERVSR_H
  3. #define SUPERVSR_H
  4.  
  5. // This defines three subclasses of the parent type person. Different
  6. //  data is stored for the different job classifications to illustrate
  7. //  that it can be done.
  8.  
  9. #include "person.h"
  10.  
  11. class supervisor : public person {
  12.    char title[25];
  13. public:
  14.    void init_data(char in_name[], int in_salary, char in_title[]);
  15.    void display(void);
  16. };
  17.  
  18.  
  19.  
  20. class programmer : public person {
  21.    char title[25];
  22.    char language[25];
  23. public:
  24.    void init_data(char in_name[], int in_salary, char in_title[],
  25.                   char in_language[]);
  26.    void display(void);
  27. };
  28.  
  29.  
  30.  
  31. class secretary : public person {
  32.    char shorthand;
  33.    int typing_speed;
  34. public:
  35.    void init_data(char in_name[], int in_salary,
  36.                   char in_shorthand, char in_typing_speed);
  37.    void display(void);
  38. };
  39.  
  40. #endif
  41.